home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1995 #1 / Amiga Plus 1995 #1.iso / fish-disketten / fish_941-950 / d944 / blocked / makefile < prev    next >
Makefile  |  1994-12-13  |  401b  |  35 lines

  1. CFLAGS=+IPre:all.pre
  2. DIRS=ExeAk:
  3. SRC1=blocked
  4. LIVE1=$(DIRS)$(SRC1)
  5.  
  6. all : $(SRC1).x
  7.  
  8. $(SRC1).qi : $(SRC1).ql
  9.     qual $(SRC1).ql
  10.  
  11. $(SRC1).o : $(SRC1).qi
  12.  
  13. $(SRC1).x : $(SRC1).o
  14.     ln -o $(SRC1).x $(SRC1).o -lak -lc
  15.  
  16. live : $(LIVE1)
  17.  
  18. $(LIVE1) : $(SRC1).x
  19.     c:copy $*.x $@
  20.  
  21. cleanall :
  22.     delete #?.dbg
  23.  
  24. cleano :
  25.     delete #?.o
  26.  
  27. cleanx :
  28.     delete #?.x
  29.  
  30. cleanq :
  31.     delete #?.qi
  32.  
  33. clean : cleanall cleano cleanx cleanq
  34.  
  35.